home *** CD-ROM | disk | FTP | other *** search
/ Web Pages Made Easy 52 - CoffeeCup HTML Editor 9.5 / WPME.ISO / Contents / Software_Authoring / HTML_Validator_Lite / cselite.exe / {app} / javascriptinsertercfg.txt < prev    next >
Encoding:
Text File  |  2003-10-15  |  68.6 KB  |  611 lines

  1. <!-- CSE HTML Validator Standard/Professional/Lite JavaScript Inserter Configuration by AI Internet Solutions (http://www.htmlvalidator.com/) -->
  2. <!-- Last updated: October 15, 2003 -->
  3.  
  4. <!-- IMPORTANT! If you modify or customize this file, make a backup because it may be overwritten the next time you install or reinstall HTML Validator. If you want to customize this configuration file, consider customizing the User Inserter instead. -->
  5.  
  6. <!-- For detailed documentation about this file, see the "Text Inserters" topic in help. -->
  7.  
  8. <!-- NOTE: This document is not 100% XML compliant. Each comment and each tag must be on one and only one line. -->
  9. <!-- flags: 1-press enter after inserting text, 2-don't change (preserve) case when inserting text, 4-line separator, 8-close (actually hide) tag inserter (new v4.51), 16-CSS property (new v5.02), 32-don't change case if XHTML document (new v5.4910), 64-add quick close if XHTML document  -->
  10. <!-- command: 1-edit configuration, 2-reload configuration -->
  11. <!-- inserttext:   to simulate pressing the enter key,   to simulate pressing the tab key,  to simulate pressing the backspace key -->
  12.  
  13. <csetaginserterconfiguration version="1">
  14.  
  15. <tag menu='JS' inserttext='"|"' hint='Enclose text in double quotes.' flags='2'/>
  16. <tag menu='JS' inserttext="'|'" hint='Enclose text in single quotes.' flags='2'/>
  17. <tag menu='JS' inserttext='(|)' hint='Enclose text in parenthesis.' flags='2'/>
  18. <tag menu='JS' inserttext='[|]' hint='Enclose text in square brackets.' flags='2'/>
  19. <tag menu='JS' inserttext='/|/' hint='Enclose text in forward slashes. Indicates a regular expression literal.' flags='2'/>
  20. <tag menu='JS' flags='4'/>
  21. <tag menu='JS' caption='Edit Configuration' hint='Edit the configuration file to make your own additions and changes to the JavaScript Inserter.' command='1' flags='0'/>
  22. <tag menu='JS' caption='Reload Configuration' hint='Delete the JavaScript Inserter and recreate it to reread its configuration.' command='2' flags='0'/>
  23. <tag menu='JS' flags='4'/>
  24. <tag menu='JS' caption='Close JavaScript Inserter' flags='8'/>
  25.  
  26. <tag menu='A' submenu='Anchor' hint='Created with <a name="name">.' flags='2'/>
  27. <tag menu='A' submenu='Anchor' inserttext='.name' hint='The name of the anchor element.' flags='2'/>
  28.  
  29. <tag menu='A' submenu='Applet' hint='Represents a Java applet embedded in an HTML document.' flags='2'/>
  30. <tag menu='A' submenu='Applet' inserttext='.applets[|]' hint='document.applets[i] Array of Applet objects.' flags='2'/>
  31.  
  32. <tag menu='A' submenu='Arguments' inserttext='arguments' flags='2'/>
  33. <tag menu='A' submenu='Arguments' inserttext='arguments[|]' hint='Access a function argument. Element 0 is the first.' flags='2'/>
  34. <tag menu='A' submenu='Arguments' inserttext='.callee' hint='The function that is currently running.' flags='2'/>
  35. <tag menu='A' submenu='Arguments' inserttext='.length' hint='The number of arguments passed to the current function.' flags='2'/>
  36.  
  37. <tag menu='A' submenu='Array' inserttext='new Array(|)' hint='Create a new Array object.' flags='2'/>
  38. <tag menu='A' submenu='Array' flags='4'/>
  39. <tag menu='A' submenu='Array' inserttext='.concat(|)' hint='Returns a new array formed by concatenating each argument to the array.' flags='2'/>
  40. <tag menu='A' submenu='Array' inserttext='.join(|)' hint='Returns a string from converting each array element to a string and then concatenating them, with an optional separator between each. Default separator is a comma.' flags='2'/>
  41. <tag menu='A' submenu='Array' inserttext='.pop()' hint='Deletes the last element, returns value of deleted element, and decrements array length.' flags='2'/>
  42. <tag menu='A' submenu='Array' inserttext='.push(|)' hint='Appends one or more values to the end of the array.' flags='2'/>
  43. <tag menu='A' submenu='Array' inserttext='.reverse()' hint='Reverses the order of the elements in the array.' flags='2'/>
  44. <tag menu='A' submenu='Array' inserttext='.shift()' hint='Shift array elements down, removing and returning the first element of the array.' flags='2'/>
  45. <tag menu='A' submenu='Array' inserttext='.slice(|)' hint='slice(start, end) Returns a slice of the array. Does not modify the array.' flags='2'/>
  46. <tag menu='A' submenu='Array' inserttext='.sort(|)' hint='Sorts the array in place. Specify an optional sorting function.' flags='2'/>
  47. <tag menu='A' submenu='Array' inserttext='.splice(|)' hint='splice(start, deleteCount, value, ...) Returns a new array of the deleted elements. Inserts, removes, or replaces array elements.' flags='2'/>
  48. <tag menu='A' submenu='Array' inserttext='.toLocaleString(|)' hint='Returns a string from converting each array element to a string (using toLocaleString()) and then concatenating them with a locale specific separator.' flags='2'/>
  49. <tag menu='A' submenu='Array' inserttext='.toString()' hint='Returns a string from converting each array element to a string and then concatenating them in a comma separated list.' flags='2'/>
  50. <tag menu='A' submenu='Array' inserttext='.unshift(|)' hint='Inserts arguments at the beginning of the array. shifting elements up to make room. Modifies the array directly; does not create a new array.' flags='2'/>
  51.  
  52. <tag menu='B' submenu='Boolean' inserttext='new Boolean(|)' hint='Create a new Boolean object.' flags='2'/>
  53. <tag menu='B' submenu='Boolean' inserttext='Boolean(|)' hint='Convert argument to a primitive boolean value.' flags='2'/>
  54. <tag menu='B' submenu='Boolean' flags='4'/>
  55. <tag menu='B' submenu='Boolean' inserttext='.toString()' hint='Returns the string "true" or "false" depending on the value of the Boolean object.' flags='2'/>
  56. <tag menu='B' submenu='Boolean' inserttext='.valueOf()' hint='Returns the primitive value true or false depending on the value of the Boolean object.' flags='2'/>
  57.  
  58. <tag menu='B' submenu='Button' hint='Button inherits from Input and HTMLElement.' flags='0'/>
  59. <tag menu='B' submenu='Button' inserttext='.value' hint='The text that appears in the button.' flags='2'/>
  60. <tag menu='B' submenu='Button' inserttext='.onclick' hint='Event handler invoked when the button is clicked.' flags='2'/>
  61.  
  62. <tag menu='B' flags='4'/>
  63. <tag menu='B' inserttext='break;' hint='break statement.' flags='2'/>
  64. <tag menu='B' inserttext='break |;' hint='break labelname;' flags='2'/>
  65.  
  66. <tag menu='C' submenu='Checkbox' hint='Checkbox inherits from Input and HTMLElement.' flags='0'/>
  67. <tag menu='C' submenu='Checkbox' inserttext='.checked' hint='Specifies whether the checkbox is checked. Read/write boolean property.' flags='2'/>
  68. <tag menu='C' submenu='Checkbox' inserttext='.defaultChecked' hint='Specifies whether the checkbox is checked by default. Read-only boolean property.' flags='2'/>
  69. <tag menu='C' submenu='Checkbox' inserttext='.onclick' hint='Event handler invoked when the button is clicked or selected.' flags='2'/>
  70. <tag menu='C' submenu='Checkbox' inserttext='.value' hint='The value submitted when the form is submitted. Read/write string.' flags='2'/>
  71.  
  72. <tag menu='C' flags='4'/>
  73. <tag menu='C' inserttext='continue;' hint='continue statement.' flags='2'/>
  74. <tag menu='C' inserttext='continue |;' hint='continue labelname;' flags='2'/>
  75.  
  76. <tag menu='D' submenu='Date' inserttext='new Date(|)' hint='Create a new Date object.' flags='2'/>
  77. <tag menu='D' submenu='Date' flags='4'/>
  78.  
  79. <tag menu='D' submenu='Date->.get Methods' inserttext='.getDate()' hint='Returns the day of the month (1-31) expressed in local time.' flags='2'/>
  80. <tag menu='D' submenu='Date->.get Methods' inserttext='.getDay()' hint='Day of the week (0-6). 0 is Sunday, 6 is Saturday. Expressed in local time.' flags='2'/>
  81. <tag menu='D' submenu='Date->.get Methods' inserttext='.getFullYear()' hint='Returns the four-digit year expressed in local time.' flags='2'/>
  82. <tag menu='D' submenu='Date->.get Methods' inserttext='.getHours()' hint='Returns the hours field (0-23) expressed in local time.' flags='2'/>
  83. <tag menu='D' submenu='Date->.get Methods' inserttext='.getMilliseconds()' hint='Returns the milliseconds field (0-999) expressed in local time.' flags='2'/>
  84. <tag menu='D' submenu='Date->.get Methods' inserttext='.getMinutes()' hint='Returns the minutes field (0-59) expressed in local time.' flags='2'/>
  85. <tag menu='D' submenu='Date->.get Methods' inserttext='.getMonth()' hint='Month field (0-11). 0 is January, 11 is December. Expressed in local time.' flags='2'/>
  86. <tag menu='D' submenu='Date->.get Methods' inserttext='.getSeconds()' hint='Returns the seconds field (0-59) expressed in local time.' flags='2'/>
  87.  
  88. <tag menu='D' submenu='Date->.get Methods' inserttext='.getTime()' hint='Returns the date in millisconds since midnight GMT 1970-01-01.' flags='2'/>
  89. <tag menu='D' submenu='Date->.get Methods' inserttext='.getTimezoneOffset()' hint='Returns the difference, in minutes, between GMT and local time.' flags='2'/>
  90.  
  91. <tag menu='D' submenu='Date->.get Methods' inserttext='.getUTCDate()' hint='Returns the day of the month (1-31) expressed in universal time.' flags='2'/>
  92. <tag menu='D' submenu='Date->.get Methods' inserttext='.getUTCDay()' hint='Day of the week (0-6). 0 is Sunday, 6 is Saturday. Expressed in universal time.' flags='2'/>
  93. <tag menu='D' submenu='Date->.get Methods' inserttext='.getUTCFullYear()' hint='Returns the four-digit year expressed in universal time.' flags='2'/>
  94. <tag menu='D' submenu='Date->.get Methods' inserttext='.getUTCHours()' hint='Returns the hours field (0-23) expressed in universal time.' flags='2'/>
  95. <tag menu='D' submenu='Date->.get Methods' inserttext='.getUTCMilliseconds()' hint='Returns the milliseconds field expressed in universal time.' flags='2'/>
  96. <tag menu='D' submenu='Date->.get Methods' inserttext='.getUTCMinutes()' hint='Returns the minutes field (0-59) expressed in universal time.' flags='2'/>
  97. <tag menu='D' submenu='Date->.get Methods' inserttext='.getUTCMonth()' hint='Month field (0-11). 0 is January, 11 is December. Expressed in universal time.' flags='2'/>
  98. <tag menu='D' submenu='Date->.get Methods' inserttext='.getUTCSeconds()' hint='Returns the seconds field (0-59) expressed in universal time.' flags='2'/>
  99.  
  100. <tag menu='D' submenu='Date->.get Methods' inserttext='.getYear()' hint='Recommend getFullYear() instead. Returns the year field of a date minus 1900.' flags='2'/>
  101.  
  102. <tag menu='D' submenu='Date->.set Methods' inserttext='.setDate(|)' hint='Set the day of the month (1-31) expressed in local time.' flags='2'/>
  103. <tag menu='D' submenu='Date->.set Methods' inserttext='.setFullYear(|)' hint='Set the four-digit year (and optionally the month and day) expressed in local time.' flags='2'/>
  104. <tag menu='D' submenu='Date->.set Methods' inserttext='.setHours(|)' hint='Set the hours field (0-23) (and optionally mins, secs, millis) expressed in local time.' flags='2'/>
  105. <tag menu='D' submenu='Date->.set Methods' inserttext='.setMilliseconds(|)' hint='Set the milliseconds field (0-999) expressed in local time.' flags='2'/>
  106. <tag menu='D' submenu='Date->.set Methods' inserttext='.setMinutes(|)' hint='Set the minutes field (0-59) (and optionally secs, millis) expressed in local time.' flags='2'/>
  107. <tag menu='D' submenu='Date->.set Methods' inserttext='.setMonth(|)' hint='Set the month field (0-11). 0 is January, 11 is December. Optionally set the day (1-31). Expressed in local time.' flags='2'/>
  108. <tag menu='D' submenu='Date->.set Methods' inserttext='.setSeconds(|)' hint='Set the seconds field (0-59) (and optionally millis) expressed in local time.' flags='2'/>
  109. <tag menu='D' submenu='Date->.set Methods' inserttext='.setTime(|)' hint='Set the date in millisconds since midnight GMT 1970-01-01.' flags='2'/>
  110.  
  111. <tag menu='D' submenu='Date->.set Methods' inserttext='.setUTCDate(|)' hint='Set the day of the month (1-31) expressed in universal time.' flags='2'/>
  112. <tag menu='D' submenu='Date->.set Methods' inserttext='.setUTCFullYear(|)' hint='Set the four-digit year (and optionally the month and day) expressed in universal time.' flags='2'/>
  113. <tag menu='D' submenu='Date->.set Methods' inserttext='.setUTCHours(|)' hint='Set the hours field (0-23) (and optionally mins, secs, millis) expressed in universal time.' flags='2'/>
  114. <tag menu='D' submenu='Date->.set Methods' inserttext='.setUTCMilliseconds(|)' hint='Set the milliseconds field (0-999) expressed in universal time.' flags='2'/>
  115. <tag menu='D' submenu='Date->.set Methods' inserttext='.setUTCMinutes(|)' hint='Set the minutes field (0-59) (and optionally secs, millis) expressed in universal time.' flags='2'/>
  116. <tag menu='D' submenu='Date->.set Methods' inserttext='.setUTCMonth(|)' hint='Set the month field (0-11). 0 is January, 11 is December. Optionally set the day (1-31). Expressed in universal time.' flags='2'/>
  117. <tag menu='D' submenu='Date->.set Methods' inserttext='.setUTCSeconds(|)' hint='Set the seconds field (0-59) (and optionally millis) expressed in universal time.' flags='2'/>
  118.  
  119. <tag menu='D' submenu='Date->.set Methods' inserttext='.setYear(|)' hint='Recommend setFullYear() instead. Set the year field of a date.' flags='2'/>
  120.  
  121. <tag menu='D' submenu='Date' flags='4'/>
  122.  
  123. <tag menu='D' submenu='Date' inserttext='Date.parse(|)' hint='Parse a date string and return the date in milliseconds since 1970-01-01.' flags='2'/>
  124. <tag menu='D' submenu='Date' inserttext='Date.UTC(|)' hint='Date.UTC(year, month, day, hours, minutes, seconds, ms) Convert UTC date to milliseconds since midnight GMT 1970-01-01.' flags='2'/>
  125.  
  126. <tag menu='D' submenu='Date' flags='4'/>
  127.  
  128. <tag menu='D' submenu='Date' inserttext='.toDateString()' hint='Returns string rep. of date portion expressed in the local time zone.' flags='2'/>
  129. <tag menu='D' submenu='Date' inserttext='.toGMTString()' hint='Recommend toUTCString() instead. Returns string rep. of date expressed in GMT time zone.' flags='2'/>
  130. <tag menu='D' submenu='Date' inserttext='.toLocaleDateString()' hint='Returns string rep. (formatted to local conventions) of date portion expressed in the local time zone.' flags='2'/>
  131. <tag menu='D' submenu='Date' inserttext='.toLocaleString()' hint='Returns string rep. (formatted to local conventions) of date and time expressed in the local time zone.' flags='2'/>
  132. <tag menu='D' submenu='Date' inserttext='.toLocaleTimeString()' hint='Returns string rep. (formatted to local conventions) of time portion expressed in the local time zone.' flags='2'/>
  133. <tag menu='D' submenu='Date' inserttext='.toString()' hint='Returns string rep. of date, expressed in the local time zone.' flags='2'/>
  134. <tag menu='D' submenu='Date' inserttext='.toTimeString()' hint='Returns string rep. of time portion expressed in the local time zone.' flags='2'/>
  135. <tag menu='D' submenu='Date' inserttext='.toUTCString()' hint='Returns string rep. of date, expressed in universal time.' flags='2'/>
  136.  
  137. <tag menu='D' submenu='Date' inserttext='.valueOf()' hint='Returns the milliseconds rep. of a date. Same as getTime().' flags='2'/>
  138.  
  139. <tag menu='D' submenu='Document' inserttext='.alinkColor' hint='The color of activated links in the document. From the alink attribute of the body tag.' flags='2'/>
  140. <tag menu='D' submenu='Document' inserttext='.all[|]' hint='An array of all HTML elements in a document.' flags='2'/>
  141. <tag menu='D' submenu='Document' inserttext='.all.tags(|)' hint='tags(tagname) Returns an array of HTML elements of the given type.' flags='2'/>
  142. <tag menu='D' submenu='Document' inserttext='.anchors[|]' hint='An array of Anchor objects from anchors that appear in the document.' flags='2'/>
  143. <tag menu='D' submenu='Document' inserttext='.applets[|]' hint='An array of Applet objects from applets that appear in the document.' flags='2'/>
  144. <tag menu='D' submenu='Document' inserttext='.bgColor' hint='The background color of the document. From the bgcolor attribute of the body tag.' flags='2'/>
  145. <tag menu='D' submenu='Document' inserttext='.clear()' hint='Deprecated in JS 1.1. Should not be used. Erases the document content.' flags='2'/>
  146. <tag menu='D' submenu='Document' inserttext='.close()' hint='Closes a document stream opened with open().' flags='2'/>
  147. <tag menu='D' submenu='Document' inserttext='.cookie' hint='String value of the cookie associated with the document. Read/write string property.' flags='2'/>
  148. <tag menu='D' submenu='Document' inserttext='.domain' hint="String value specifying the document's Internet domain. Example: domain.com" flags='2'/>
  149. <tag menu='D' submenu='Document' inserttext='.embeds[|]' hint='Array of objects representing data embedding in the document.' flags='2'/>
  150. <tag menu='D' submenu='Document' inserttext='.fgColor' hint='The default text color of the document. From the text attribute of the body tag.' flags='2'/>
  151. <tag menu='D' submenu='Document' inserttext='.forms[|]' hint='Array of Form objects from forms that appear in the document.' flags='2'/>
  152. <tag menu='D' submenu='Document' inserttext='.images[|]' hint='Array of Image objects from images that appear in the document.' flags='2'/>
  153. <tag menu='D' submenu='Document' inserttext='.lastModified' hint='The date of the most recent change to the document. Read-only string. Reported by the web server.' flags='2'/>
  154. <tag menu='D' submenu='Document' inserttext='.linkColor' hint='The color of unvisited links in the document. From the link attribute of the body tag.' flags='2'/>
  155. <tag menu='D' submenu='Document' inserttext='.links[|]' hint='Array of Link objects from the hypertext links that appear in the document.' flags='2'/>
  156. <tag menu='D' submenu='Document' inserttext='.open()' hint='Opens a stream where document contents can be written. Optionally mimetype argument.' flags='2'/>
  157. <tag menu='D' submenu='Document' inserttext='.plugins[|]' hint='Recommend embeds[] instead. Array of objects representing data embedding in the document.' flags='2'/>
  158. <tag menu='D' submenu='Document' inserttext='.referrer' hint='The URL of the document. Read-only string property.' flags='2'/>
  159. <tag menu='D' submenu='Document' inserttext='.title' hint='The title of the document. Read-only string property.' flags='2'/>
  160. <tag menu='D' submenu='Document' inserttext='.URL' hint='The URL of the document. Read-only string property.' flags='2'/>
  161. <tag menu='D' submenu='Document' inserttext='.vlinkColor' hint='The color of visited links in the document. From the vlink attribute of the body tag.' flags='2'/>
  162. <tag menu='D' submenu='Document' inserttext='.write(|)' hint='Inserts a string or strings into the document or into a stream opened with open().' flags='2'/>
  163. <tag menu='D' submenu='Document' inserttext='.writeln(|)' hint='Like write(), but appends a newline character to the output.' flags='2'/>
  164.  
  165. <tag menu='D' flags='4'/>
  166. <tag menu='D' inserttext='do { | } while ();' caption='do {|} while ();' hint='do/while loop.' flags='2'/>
  167. <tag menu='D' inserttext='decodeURI(|)' hint='Returns a string with hexadecimal escape sequences replaced with the characters they represent. Reverses encodeURI().' flags='2'/>
  168. <tag menu='D' inserttext='decodeURIComponent(|)' hint='Returns a string with hexadecimal escape sequences replaced with the characters they represent. Reverses encodeURIComponent().' flags='2'/>
  169. <tag menu='D' inserttext='delete |;' hint='Delete object property, array element, or specified variable. delete is a unary operator.' flags='2'/>
  170.  
  171. <tag menu='E' submenu='Error' inserttext='new Error(|)' hint='Creates a new Error object. Optional message argument.' flags='2'/>
  172. <tag menu='E' submenu='Error' flags='4'/>
  173. <tag menu='E' submenu='Error' inserttext='.message' hint='Human-readable error message.' flags='2'/>
  174. <tag menu='E' submenu='Error' inserttext='.name' hint='The type of error or exception that occurred.' flags='2'/>
  175. <tag menu='E' submenu='Error' inserttext='.toString()' hint='Convert Error object to a string (implementation-defined).' flags='2'/>
  176.  
  177. <tag menu='E' submenu='EvalError' inserttext='new EvalError(|)' hint='Creates a new EvalError object. Optional message argument.' flags='2'/>
  178. <tag menu='E' submenu='EvalError' flags='4'/>
  179. <tag menu='E' submenu='EvalError' inserttext='.message' hint='Human-readable error message.' flags='2'/>
  180. <tag menu='E' submenu='EvalError' inserttext='.name' hint='The type of error or exception that occurred.' flags='2'/>
  181.  
  182. <tag menu='E' flags='4'/>
  183. <tag menu='E' inserttext='encodeURI(|)' hint='Returns a string with certain characters replaced with hexadecimal escape sequences.' flags='2'/>
  184. <tag menu='E' inserttext='encodeURIComponent(|)' hint='Returns a string with certain characters replaced with hexadecimal escape sequences.' flags='2'/>
  185. <tag menu='E' inserttext='escape(|)' hint='Deprecated. Recommend encodeURI() or encodeURIComponent() instead. Returns a string with certain characters replaced with hexadecimal escape sequences.' flags='2'/>
  186. <tag menu='E' inserttext='eval(|)' hint='Accepts a string that contains a JavaScript expression to evaluate or statements to execute.' flags='2'/>
  187.  
  188. <tag menu='F' submenu='FileUpload' hint='FileUpload inherits from Input and HTMLElement.' flags='0'/>
  189. <tag menu='F' submenu='FileUpload' inserttext='onchange' hint='Event handler invoked when the user completes an edit in the FileUpload element.' flags='2'/>
  190.  
  191. <tag menu='F' submenu='Form' hint='Form inherits from HTMLElement.' flags='0'/>
  192. <tag menu='F' submenu='Form' inserttext='.action' hint='The URL where the form data is sent. Read/write string.' flags='2'/>
  193. <tag menu='F' submenu='Form' inserttext='.elements[|]' hint='Array of input elements that appear in the form.' flags='2'/>
  194. <tag menu='F' submenu='Form' inserttext='.encoding' hint='Specifies how form data is encoded. Read/write string.' flags='2'/>
  195. <tag menu='F' submenu='Form' inserttext='.length' hint='Number of elements in the form. Equivalent to elements.length.' flags='2'/>
  196. <tag menu='F' submenu='Form' inserttext='.method' hint='The method by which form data is submitted. Read/write string ("get" or "post").' flags='2'/>
  197. <tag menu='F' submenu='Form' inserttext='.name' hint='The name of the form. From the name attribute of the form tag. Read/write string property.' flags='2'/>
  198. <tag menu='F' submenu='Form' inserttext='.onreset' hint='Event handler invoked just before elements of the form are reset.' flags='2'/>
  199. <tag menu='F' submenu='Form' inserttext='.onsubmit' hint='Event handler invoked just before the form is submitted.' flags='2'/>
  200. <tag menu='F' submenu='Form' inserttext='.reset()' hint='Resets the form. Each element is set to its default value.' flags='2'/>
  201. <tag menu='F' submenu='Form' inserttext='.submit()' hint='Submits the form as if the submit button was pressed.' flags='2'/>
  202. <tag menu='F' submenu='Form' inserttext='.target' hint='The name of the frame or window where form results should be displayed. Read/write string property.' flags='2'/>
  203.  
  204. <tag menu='F' submenu='Function' inserttext='new Function(|)' hint='Creates a new Function object.' flags='2'/>
  205. <tag menu='F' submenu='Function' flags='4'/>
  206. <tag menu='F' submenu='Function' inserttext='.apply(|)' hint='.apply(thisobj, args) Invokes the specified function as if a method of thisobj, passing it the arguments in the args array.' flags='2'/>
  207. <tag menu='F' submenu='Function' inserttext='.arguments[|]' hint='Deprecated in favor of Arguments object. Access a function argument. Element 0 is the first.' flags='2'/>
  208. <tag menu='F' submenu='Function' inserttext='.arguments.length' hint='Deprecated in favor of Arguments object. The number of elements (arguments) in the array.' flags='2'/>
  209. <tag menu='F' submenu='Function' inserttext='.call(|)' hint='.call(thisobj, args) Invokes the specified function as if a method of thisobj, passing it the arguments following thisobj.' flags='2'/>
  210. <tag menu='F' submenu='Function' inserttext='.length' hint='Returns the number of named arguments declared when the function was defined.' flags='2'/>
  211. <tag menu='F' submenu='Function' inserttext='.prototype' hint='Refers to the object that serves as the prototype for an entire class of objects.' flags='2'/>
  212. <tag menu='F' submenu='Function' inserttext='.toString()' hint='Converts the function to a string in an implementation-dependent way.' flags='2'/>
  213.  
  214. <tag menu='F' flags='4'/>
  215. <tag menu='F' submenu='for' inserttext='for (|;;)' hint='for loop.' flags='2'/>
  216. <tag menu='F' submenu='for' inserttext='for (|;;) { }' hint='for loop.' flags='2'/>
  217. <tag menu='F' submenu='for' inserttext='for (| in )' hint='for/in loop.' flags='2'/>
  218. <tag menu='F' submenu='for' inserttext='for (| in ) { }' hint='for/in loop.' flags='2'/>
  219. <tag menu='F' flags='4'/>
  220.  
  221. <tag menu='F' inserttext='function |() { }' hint='Define a JavaScript function.' flags='2'/>
  222.  
  223. <tag menu='H' submenu='Hidden' inserttext='.value' hint='Data passed to the server when the form is submitted. Read/write string.' flags='2'/>
  224.  
  225. <tag menu='H' submenu='History' inserttext='.back()' hint='Revisit the URL that was visited immediately before the current one. Calling this is like clicking on the back button.' flags='2'/>
  226. <tag menu='H' submenu='History' inserttext='.forward()' hint='Revisit the URL that was visited immediately after the current one. Calling this is like clicking on the forward button.' flags='2'/>
  227. <tag menu='H' submenu='History' inserttext='.go(|)' hint='Revisit a URL based on a relative position (like -1, 0, 1, 2, etc.) or substring of a URL.' flags='2'/>
  228. <tag menu='H' submenu='History' inserttext='.length' hint='Number of URLs in the history list.' flags='2'/>
  229.  
  230. <tag menu='H' submenu='HTMLElement' inserttext='.onclick' hint='Event handler invoked when the user clicks on the element.' flags='2'/>
  231. <tag menu='H' submenu='HTMLElement' inserttext='.ondblclick' hint='Event handler invoked when the user double-clicks on the element.' flags='2'/>
  232. <tag menu='H' submenu='HTMLElement' inserttext='.onkeydown' hint='Event handler invoked when the user presses a key over the element.' flags='2'/>
  233. <tag menu='H' submenu='HTMLElement' inserttext='.onkeypress' hint='Event handler invoked when the user presses a key over the element.' flags='2'/>
  234. <tag menu='H' submenu='HTMLElement' inserttext='.onkeyup' hint='Event handler invoked when the user releases a key over the element.' flags='2'/>
  235. <tag menu='H' submenu='HTMLElement' inserttext='.onmousedown' hint='Event handler invoked when the user presses a mouse button over the element.' flags='2'/>
  236. <tag menu='H' submenu='HTMLElement' inserttext='.onmousemove' hint='Event handler invoked when the user moves the mouse pointer within the element.' flags='2'/>
  237. <tag menu='H' submenu='HTMLElement' inserttext='.onmouseout' hint='Event handler invoked when the user moves the mouse pointer out of the element.' flags='2'/>
  238. <tag menu='H' submenu='HTMLElement' inserttext='.onmouseover' hint='Event handler invoked when the user moves the mouse pointer over the element.' flags='2'/>
  239. <tag menu='H' submenu='HTMLElement' inserttext='.onmouseup' hint='Event handler invoked when the user releases a mouse button over the element.' flags='2'/>
  240.  
  241. <tag menu='I' submenu='Image' inserttext='new Image(|)' hint='new Image(width, height) Creates a new Image object.' flags='2'/>
  242. <tag menu='I' submenu='Image' flags='4'/>
  243. <tag menu='I' submenu='Image' inserttext='.border' hint='The width, in pixels, of the image border if hyperlinked.' flags='2'/>
  244. <tag menu='I' submenu='Image' inserttext='.complete' hint='Specifies whether the image is completely loaded. Read-only boolean property.' flags='2'/>
  245. <tag menu='I' submenu='Image' inserttext='.height' hint='The height, in pixels, of the image.' flags='2'/>
  246. <tag menu='I' submenu='Image' inserttext='.hspace' hint='The extra space, in pixels, on the left and right of the image.' flags='2'/>
  247. <tag menu='I' submenu='Image' inserttext='.lowsrc' hint='Specifies an alternate image (usually smaller). Read/write string.' flags='2'/>
  248. <tag menu='I' submenu='Image' inserttext='.name' hint='The name of the image.' flags='2'/>
  249. <tag menu='I' submenu='Image' inserttext='.onabort' hint='Event handler invoked when the user aborts the image download.' flags='2'/>
  250. <tag menu='I' submenu='Image' inserttext='.onerror' hint='Event handler invoked if an error occurs downloading the image.' flags='2'/>
  251. <tag menu='I' submenu='Image' inserttext='.onload' hint='Event handler invoked when the image is successfully downloaded.' flags='2'/>
  252. <tag menu='I' submenu='Image' inserttext='.src' hint='The URL of the image. Read/write string.' flags='2'/>
  253. <tag menu='I' submenu='Image' inserttext='.vspace' hint='The extra space, in pixels, above and below the image.' flags='2'/>
  254. <tag menu='I' submenu='Image' inserttext='.width' hint='The width, in pixels, of the image.' flags='2'/>
  255.  
  256. <tag menu='I' submenu='Input' inserttext='.blur()' hint='Removes keyboard focus from the element.' flags='2'/>
  257. <tag menu='I' submenu='Input' inserttext='.checked' hint='Specifies whether a checkbox or radio element is checked. Read/write boolean property.' flags='2'/>
  258. <tag menu='I' submenu='Input' inserttext='.click()' hint='Simulates a mouse-click on the element.' flags='2'/>
  259. <tag menu='I' submenu='Input' inserttext='.defaultChecked' hint='Specifies whether a checkbox or radio element is checked by default. Read-only boolean property.' flags='2'/>
  260. <tag menu='I' submenu='Input' inserttext='.defaultValue' hint='The initial text that appears when the form is reset. For text, textarea, and password elements.' flags='2'/>
  261. <tag menu='I' submenu='Input' inserttext='.focus()' hint='Gives keyboard focus to the element.' flags='2'/>
  262. <tag menu='I' submenu='Input' inserttext='.form' hint='Read-only reference to the form object that contains the element.' flags='2'/>
  263. <tag menu='I' submenu='Input' inserttext='.length' hint='The number of choices in the select element.' flags='2'/>
  264. <tag menu='I' submenu='Input' inserttext='.name' hint='The name of the element. Read-only string.' flags='2'/>
  265. <tag menu='I' submenu='Input' inserttext='.onblur' hint='Event handler invoked when the user takes keyboard focus away from the element.' flags='2'/>
  266. <tag menu='I' submenu='Input' inserttext='.onchange' hint='Event handler invoked when the user enters or selects a new value.' flags='2'/>
  267. <tag menu='I' submenu='Input' inserttext='.onclick' hint='Event handler invoked when the user clicks or selects the button. Buttons only.' flags='2'/>
  268. <tag menu='I' submenu='Input' inserttext='.onfocus' hint='Event handler invoked when the user gives keyboard focus to the element.' flags='2'/>
  269. <tag menu='I' submenu='Input' inserttext='.options[|]' hint='Array containing the option objects for a select element.' flags='2'/>
  270. <tag menu='I' submenu='Input' inserttext='.select()' hint='Selects the text that appears in the element. Only for elements displaying text.' flags='2'/>
  271. <tag menu='I' submenu='Input' inserttext='.selectedIndex' hint='Specifies which select object is currently selected. Read/write integer.' flags='2'/>
  272. <tag menu='I' submenu='Input' inserttext='.type' hint='The type of the form element ("button", "text", etc.). Read-only string.' flags='2'/>
  273. <tag menu='I' submenu='Input' inserttext='.value' hint='The value displayed and/or submitted. Read/write string.' flags='2'/>
  274.  
  275. <tag menu='I' flags='4'/>
  276. <tag menu='I' submenu='if' inserttext='if (|)' hint='if statement.' flags='2'/>
  277. <tag menu='I' submenu='if' inserttext='if (|) { }' hint='if statement.' flags='2'/>
  278. <tag menu='I' submenu='if' inserttext='if (|) else' hint='if/else statement.' flags='2'/>
  279. <tag menu='I' submenu='if' inserttext='if (|) { } else { }' caption='if (|) {} else {}' hint='if/else statement.' flags='2'/>
  280. <tag menu='I' flags='4'/>
  281. <tag menu='I' inserttext='in |;' hint='Returns whether the lefthand operand (a string) is the name of a property of the righthand operand (an object).' flags='2'/>
  282. <tag menu='I' inserttext='Infinity' hint='Numeric property representing infinity.' flags='2'/>
  283. <tag menu='I' inserttext='instanceof |;' hint='Returns whether the lefthand operand (an object) is an instance of the righthand class.' flags='2'/>
  284. <tag menu='I' inserttext='isFinite(|)' hint='Determine whether a number is finite. Returns false if NaN (not a number) or pos or neg infinity.' flags='2'/>
  285. <tag menu='I' inserttext='isNaN(|)' hint='Determine whether argument is NaN (not a number) or can be converted to NaN.' flags='2'/>
  286.  
  287. <tag menu='L' submenu='Link' inserttext='hash' hint='The anchor portion, including the hash (#) mark. Example: "#chapter5"' flags='2'/>
  288. <tag menu='L' submenu='Link' inserttext='host' hint='The hostname and port portion. Example: "www.mydomain.com:8080"' flags='2'/>
  289. <tag menu='L' submenu='Link' inserttext='hostname' hint='The hostname portion. Example: "www.mydomain.com"' flags='2'/>
  290. <tag menu='L' submenu='Link' inserttext='href' hint='The entire URL, not a portion of it.' flags='2'/>
  291. <tag menu='L' submenu='Link' inserttext='onclick' hint='Event handler invoked when the user clicks the link. If false is returned, the link is not followed.' flags='2'/>
  292. <tag menu='L' submenu='Link' inserttext='onmouseout' hint='Event handler invoked when the mouse is moved off the link.' flags='2'/>
  293. <tag menu='L' submenu='Link' inserttext='onmouseover' hint='Event handler invoked when the mouse is moved over the link.' flags='2'/>
  294. <tag menu='L' submenu='Link' inserttext='pathname' hint='The pathname portion. Example: "/directory/page.html"' flags='2'/>
  295. <tag menu='L' submenu='Link' inserttext='port' hint='The port portion. Example: "8080"' flags='2'/>
  296. <tag menu='L' submenu='Link' inserttext='protocol' hint='The protocol portion. Includes trailing colon. Example: "http:"' flags='2'/>
  297. <tag menu='L' submenu='Link' inserttext='search' hint='The query portion. Example: "?var1=value&var2=value2"' flags='2'/>
  298. <tag menu='L' submenu='Link' inserttext='target' hint='The name of a Window object where the linked document should be displayed. Read/write string.' flags='2'/>
  299.  
  300. <tag menu='L' submenu='Location' inserttext='hash' hint='The anchor portion, including the hash (#) mark. Example: "#chapter5"' flags='2'/>
  301. <tag menu='L' submenu='Location' inserttext='host' hint='The hostname and port portion. Example: "www.mydomain.com:8080"' flags='2'/>
  302. <tag menu='L' submenu='Location' inserttext='hostname' hint='The hostname portion. Example: "www.mydomain.com"' flags='2'/>
  303. <tag menu='L' submenu='Location' inserttext='href' hint='The entire URL, not a portion of it.' flags='2'/>
  304. <tag menu='L' submenu='Location' inserttext='pathname' hint='The pathname portion. Example: "/directory/page.html"' flags='2'/>
  305. <tag menu='L' submenu='Location' inserttext='port' hint='The port portion. Example: "8080"' flags='2'/>
  306. <tag menu='L' submenu='Location' inserttext='protocol' hint='The protocol portion. Includes trailing colon. Example: "http:"' flags='2'/>
  307. <tag menu='L' submenu='Location' inserttext='search' hint='The query portion. Example: "?var1=value&var2=value2"' flags='2'/>
  308. <tag menu='L' submenu='Location' inserttext='reload(|)' hint='Reload the current document. Optional force argument.' flags='2'/>
  309. <tag menu='L' submenu='Location' inserttext='replace(|)' hint='Loads and displays a new document without a new entry in the History object.' flags='2'/>
  310.  
  311. <tag menu='M' submenu='Math->Constants' inserttext='Math.E' hint='The constant e, the base of natural logarithms. ~2.71828.' flags='2'/>
  312. <tag menu='M' submenu='Math->Constants' inserttext='Math.LN10' hint='The natural logarithm of 10. ~2.30259.' flags='2'/>
  313. <tag menu='M' submenu='Math->Constants' inserttext='Math.LN2' hint='The natural logarithm of 2. ~0.693147.' flags='2'/>
  314. <tag menu='M' submenu='Math->Constants' inserttext='Math.LOG10E' hint='The base-10 logarithm of the constant e. ~0.434294.' flags='2'/>
  315. <tag menu='M' submenu='Math->Constants' inserttext='Math.LOG2E' hint='The base-2 logarithm of the constant e. ~1.44270.' flags='2'/>
  316. <tag menu='M' submenu='Math->Constants' inserttext='Math.PI' hint='The constant pi. ~3.14159.' flags='2'/>
  317. <tag menu='M' submenu='Math->Constants' inserttext='Math.SQRT1_2' hint='The reciprocal of the square root of 2. ~0.707107.' flags='2'/>
  318. <tag menu='M' submenu='Math->Constants' inserttext='Math.SQRT2' hint='The square root of 2. ~1.41421.' flags='2'/>
  319. <tag menu='M' submenu='Math' flags='4'/>
  320. <tag menu='M' submenu='Math' inserttext='Math.abs(|)' hint='Computes an absolute value.' flags='2'/>
  321. <tag menu='M' submenu='Math' inserttext='Math.acos(|)' hint='Computes an arc cosine.' flags='2'/>
  322. <tag menu='M' submenu='Math' inserttext='Math.asin(|)' hint='Computes an arc sine.' flags='2'/>
  323. <tag menu='M' submenu='Math' inserttext='Math.atan(|)' hint='Computes an arc tangent.' flags='2'/>
  324. <tag menu='M' submenu='Math' inserttext='Math.atan2(|)' hint='Computes the angle from the X-axis to a point.' flags='2'/>
  325. <tag menu='M' submenu='Math' inserttext='Math.ceil(|)' hint='Rounds a number up.' flags='2'/>
  326. <tag menu='M' submenu='Math' inserttext='Math.cos(|)' hint='Computes a cosine.' flags='2'/>
  327. <tag menu='M' submenu='Math' inserttext='Math.exp(|)' hint='Computes an exponent of e.' flags='2'/>
  328. <tag menu='M' submenu='Math' inserttext='Math.floor(|)' hint='Rounds a number down.' flags='2'/>
  329. <tag menu='M' submenu='Math' inserttext='Math.log(|)' hint='Computes a natural logarithm.' flags='2'/>
  330. <tag menu='M' submenu='Math' inserttext='Math.max(|)' hint='Returns the largest number.' flags='2'/>
  331. <tag menu='M' submenu='Math' inserttext='Math.min(|)' hint='Returns the smallest number.' flags='2'/>
  332. <tag menu='M' submenu='Math' inserttext='Math.pow(|)' hint='Computes x to the y power.' flags='2'/>
  333. <tag menu='M' submenu='Math' inserttext='Math.random(|)' hint='Computes a random number.' flags='2'/>
  334. <tag menu='M' submenu='Math' inserttext='Math.round(|)' hint='Rounds to the nearest integer.' flags='2'/>
  335. <tag menu='M' submenu='Math' inserttext='Math.sin(|)' hint='Computes a sine.' flags='2'/>
  336. <tag menu='M' submenu='Math' inserttext='Math.sqrt(|)' hint='Computes a square root.' flags='2'/>
  337. <tag menu='M' submenu='Math' inserttext='Math.tan(|)' hint='Computes a tangent.' flags='2'/>
  338.  
  339. <tag menu='N' submenu='Navigator' inserttext='.appCodeName' hint='The code name of the browser. Usually "Mozilla". Read-only string.' flags='2'/>
  340. <tag menu='N' submenu='Navigator' inserttext='.appName' hint='The name of the browser. Example: "Netscape", "Microsoft Internet Explorer". Read-only string.' flags='2'/>
  341. <tag menu='N' submenu='Navigator' inserttext='.appVersion' hint='The browser version and platform information. Read-only string.' flags='2'/>
  342. <tag menu='N' submenu='Navigator' inserttext='.cookieEnabled' hint='Specifies whether the browser has cookies enabled. Read-only boolean property.' flags='2'/>
  343. <tag menu='N' submenu='Navigator' inserttext='.javaEnabled()' hint='Returns true if Java is supported and enabled on the browser.' flags='2'/>
  344. <tag menu='N' submenu='Navigator' inserttext='.platform' hint='The OS and/or hardware platform the browser is running on. Read-only string.' flags='2'/>
  345. <tag menu='N' submenu='Navigator' inserttext='.userAgent' hint='The value that the browser uses for the user-agent header in HTTP requests. Read-only string.' flags='2'/>
  346.  
  347. <tag menu='N' submenu='Number->Constants' inserttext='Number.MAX_VALUE' hint='The largest representable number. ~1.79E+308.' flags='2'/>
  348. <tag menu='N' submenu='Number->Constants' inserttext='Number.MIN_VALUE' hint='The smallest (closest to zero) representable number. ~5E-324.' flags='2'/>
  349. <tag menu='N' submenu='Number->Constants' inserttext='Number.NaN' hint='Numeric property representing the not-a-number value.' flags='2'/>
  350. <tag menu='N' submenu='Number->Constants' inserttext='Number.NEGATIVE_INFINITY' hint='Special value used to represent numbers smaller than -Number.MAX_VALUE.' flags='2'/>
  351. <tag menu='N' submenu='Number->Constants' inserttext='Number.POSITIVE_INFINITY' hint='Special value used to represent numbers greater than Number.MAX_VALUE.' flags='2'/>
  352. <tag menu='N' submenu='Number' flags='4'/>
  353. <tag menu='N' submenu='Number' inserttext='new Number(|)' hint='Create a new Number object.' flags='2'/>
  354. <tag menu='N' submenu='Number' inserttext='Number(|)' hint='Convert argument to a number.' flags='2'/>
  355. <tag menu='N' submenu='Number' flags='4'/>
  356. <tag menu='N' submenu='Number' inserttext='.toExponential(|)' hint='Returns a string rep. of number, in exponential notation, with x (0-20) digits after the decimal point.' flags='2'/>
  357. <tag menu='N' submenu='Number' inserttext='.toFixed(|)' hint='Returns a string rep. of number, with x (0-20) digits after the decimal point. Does not use exponential notation.' flags='2'/>
  358. <tag menu='N' submenu='Number' inserttext='.toLocaleString(|)' hint='Returns a string rep. of number, formatted to local conventions.' flags='2'/>
  359. <tag menu='N' submenu='Number' inserttext='.toPrecision(|)' hint='Returns a string rep. of number that contains x (1-21) significant digits. Rounded or padded with zeros as necessary.' flags='2'/>
  360. <tag menu='N' submenu='Number' inserttext='.toString()' hint='Returns a string rep. of number. A radix (base) argument of 2-36 is optional.' flags='2'/>
  361. <tag menu='N' submenu='Number' inserttext='.valueOf()' hint='Returns the primitive number value (rarely necessary to explicitly call this method).' flags='2'/>
  362.  
  363. <tag menu='N' flags='4'/>
  364. <tag menu='N' inserttext='NaN' hint='Numeric property representing the not-a-number value.' flags='2'/>
  365. <tag menu='N' inserttext='new |;' hint='Create a new object using the new operator. new is a unary operator.' flags='2'/>
  366. <tag menu='N' inserttext='new |();' hint='Create a new object using the new operator. new is a unary operator.' flags='2'/>
  367. <tag menu='N' inserttext='null' hint='Special (unique) value that indicates no value. Not the same as undefined.' flags='2'/>
  368.  
  369. <tag menu='O' submenu='Object' inserttext='new Object(|)' hint='Create a new Object object. Optional argument is a primitive JavaScript value (number, boolean, string).' flags='2'/>
  370. <tag menu='O' submenu='Object' flags='4'/>
  371. <tag menu='O' submenu='Object' inserttext='.constructor' hint='Reference to the function used as a constructor for the object.' flags='2'/>
  372. <tag menu='O' submenu='Object' inserttext='.hasOwnProperty(|)' hint='Returns true if object has a noninherited property with the name given by the argument, else returns false.' flags='2'/>
  373. <tag menu='O' submenu='Object' inserttext='.isPrototypeOf(|)' hint='Returns true if the object is the prototype of the argument.' flags='2'/>
  374. <tag menu='O' submenu='Object' inserttext='.propertyIsEnumerable(|)' hint='Returns true if the object has an enumerable property with the name given by the argument.' flags='2'/>
  375. <tag menu='O' submenu='Object' inserttext='.toLocaleString()' hint="Returns the object's localized string representation." flags='2'/>
  376. <tag menu='O' submenu='Object' inserttext='.toString()' hint="Returns the object's string representation." flags='2'/>
  377. <tag menu='O' submenu='Object' inserttext='.valueOf()' hint="Returns the primitive value of the object." flags='2'/>
  378.  
  379. <tag menu='O' submenu='Option' inserttext='new Option(|)' hint='new Option(text, value, defaultSelected, selected) Create a new Option object.' flags='2'/>
  380. <tag menu='O' submenu='Option' flags='4'/>
  381. <tag menu='O' submenu='Option' inserttext='.defaultSelected' hint='Specifies whether the option is initially selected. Boolean property.' flags='2'/>
  382. <tag menu='O' submenu='Option' inserttext='.index' hint='The position/index of the option in the select.options[] array. 0-based. Read-only integer.' flags='2'/>
  383. <tag menu='O' submenu='Option' inserttext='.selected' hint='Specifies whether the option is currently selected. Read/write boolean property.' flags='2'/>
  384. <tag menu='O' submenu='Option' inserttext='.text' hint='The text that appears to the user. Read/write string.' flags='2'/>
  385. <tag menu='O' submenu='Option' inserttext='.value' hint='The text passed to the web server if selected. Read/write string.' flags='2'/>
  386.  
  387. <tag menu='P' submenu='Password' hint='Password inherits from Input and HTMLElement.' flags='0'/>
  388. <tag menu='P' submenu='Password' inserttext='.value' hint='The password entered by the user. Read/write string.' flags='2'/>
  389.  
  390. <tag menu='P' flags='4'/>
  391. <tag menu='P' inserttext='parseFloat(|)' hint='Returns the first number that occurs in the string argument.' flags='2'/>
  392. <tag menu='P' inserttext='parseInt(|)' hint='Returns the first number that occurs in the string argument. Optional second argument is the radix (base).' flags='2'/>
  393.  
  394. <tag menu='R' submenu='Radio' hint='Radio inherits from Input and HTMLElement.' flags='0'/>
  395. <tag menu='R' submenu='Radio' inserttext='.checked' hint='Specifies whether the radio button is checked. Read/write boolean property.' flags='2'/>
  396. <tag menu='R' submenu='Radio' inserttext='.defaultChecked' hint='Specifies whether the radio button is checked by default. Read-only boolean property.' flags='2'/>
  397. <tag menu='R' submenu='Radio' inserttext='.onclick' hint='Event handler invoked when the radio button is clicked or selected.' flags='2'/>
  398. <tag menu='R' submenu='Radio' inserttext='.value' hint='The value submitted when the form is submitted. Read/write string.' flags='2'/>
  399.  
  400. <tag menu='R' submenu='RangeError' inserttext='new RangeError(|)' hint='Creates a new RangeError object. Optional message argument. Thrown when numeric value not in legal range.' flags='2'/>
  401. <tag menu='R' submenu='RangeError' flags='4'/>
  402. <tag menu='R' submenu='RangeError' inserttext='.message' hint='Human-readable error message.' flags='2'/>
  403. <tag menu='R' submenu='RangeError' inserttext='.name' hint='The type of error or exception that occurred.' flags='2'/>
  404.  
  405. <tag menu='R' submenu='ReferenceError' inserttext='new ReferenceError(|)' hint='Creates a new ReferenceError object. Optional message argument. Thrown when nonexistent variable is read.' flags='2'/>
  406. <tag menu='R' submenu='ReferenceError' flags='4'/>
  407. <tag menu='R' submenu='ReferenceError' inserttext='.message' hint='Human-readable error message.' flags='2'/>
  408. <tag menu='R' submenu='ReferenceError' inserttext='.name' hint='The type of error or exception that occurred.' flags='2'/>
  409.  
  410. <tag menu='R' submenu='RegExp->Anchor Characters' inserttext='^' hint='Match the beginning of the string and, in multiline mode, the beginning of a line.' flags='2'/>
  411. <tag menu='R' submenu='RegExp->Anchor Characters' inserttext='$' hint='Match the end of the string and, in multiline mode, the end of a line.' flags='2'/>
  412. <tag menu='R' submenu='RegExp->Anchor Characters' inserttext='\b' hint='Match a word boundary. Note that [\b] matches a backspace character.' flags='2'/>
  413. <tag menu='R' submenu='RegExp->Anchor Characters' inserttext='\B' hint='Match a position that is NOT a word boundary.' flags='2'/>
  414. <tag menu='R' submenu='RegExp->Anchor Characters' inserttext='(?=|)' hint="(?=p) Require that the following characters match p, but don't include them in the match." flags='2'/>
  415. <tag menu='R' submenu='RegExp->Anchor Characters' inserttext='(?!|)' hint="(?!p) Require that the following characters do NOT match p." flags='2'/>
  416.  
  417. <tag menu='R' submenu='RegExp->Character Classes' inserttext='[|]' hint='Any one character between the brackets.' flags='2'/>
  418. <tag menu='R' submenu='RegExp->Character Classes' inserttext='[^|]' hint='Any one character NOT between the brackets.' flags='2'/>
  419. <tag menu='R' submenu='RegExp->Character Classes' inserttext='.' hint='Any character except newline or another Unicode line terminator.' flags='2'/>
  420. <tag menu='R' submenu='RegExp->Character Classes' inserttext='\d' hint='Any ASCII digit. Equivalent to [0-9].' flags='2'/>
  421. <tag menu='R' submenu='RegExp->Character Classes' inserttext='\D' hint='Any character that is NOT an ASCII digit. Equivalent to [^0-9].' flags='2'/>
  422. <tag menu='R' submenu='RegExp->Character Classes' inserttext='\w' hint='Any ASCII word character. Equivalent to [a-zA-Z0-9_].' flags='2'/>
  423. <tag menu='R' submenu='RegExp->Character Classes' inserttext='\W' hint='Any character that is NOT an ASCII word character. Equivalent to [^a-zA-Z0-9_].' flags='2'/>
  424. <tag menu='R' submenu='RegExp->Character Classes' inserttext='\s' hint='Any Unicode whitespace character.' flags='2'/>
  425. <tag menu='R' submenu='RegExp->Character Classes' inserttext='\S' hint='Any Unicode character that is NOT Unicode whitespace.' flags='2'/>
  426. <tag menu='R' submenu='RegExp->Character Classes' inserttext='[\b]' hint='A literal backspace character.' flags='2'/>
  427.  
  428. <tag menu='R' submenu='RegExp->Flags' inserttext='i' hint='Perform case insensitive matching.' flags='2'/>
  429. <tag menu='R' submenu='RegExp->Flags' inserttext='g' hint='Perform global matching (find all matches insead of stopping after the first match).' flags='2'/>
  430. <tag menu='R' submenu='RegExp->Flags' inserttext='m' hint='Multi-line mode. ^ matches beg of line or string, $ matches end of line or string.' flags='2'/>
  431.  
  432. <tag menu='R' submenu='RegExp->Literal Characters' inserttext='\0' hint='Null character (\u0000).' flags='2'/>
  433. <tag menu='R' submenu='RegExp->Literal Characters' inserttext='\f' hint='Form feed (\u000C).' flags='2'/>
  434. <tag menu='R' submenu='RegExp->Literal Characters' inserttext='\n' hint='Newline character (\u000A).' flags='2'/>
  435. <tag menu='R' submenu='RegExp->Literal Characters' inserttext='\r' hint='Carriage return (\u000D).' flags='2'/>
  436. <tag menu='R' submenu='RegExp->Literal Characters' inserttext='\t' hint='Tab character (\u0009).' flags='2'/>
  437. <tag menu='R' submenu='RegExp->Literal Characters' inserttext='\v' hint='Vertical tab (\u000B).' flags='2'/>
  438. <tag menu='R' submenu='RegExp->Literal Characters' inserttext='\c|' hint='Specify a control character in the form \cX. \cX specifies ^X.' flags='2'/>
  439. <tag menu='R' submenu='RegExp->Literal Characters' inserttext='\u|' hint='Specify a Unicode character in the form \uxxxx, where xxxx is a hexadecimal number.' flags='2'/>
  440. <tag menu='R' submenu='RegExp->Literal Characters' inserttext='\x|' hint='Specify a Latin character in the form \xnn, where nn is a hexadecimal number.' flags='2'/>
  441.  
  442. <tag menu='R' submenu='RegExp->Repetition Characters' inserttext='{|,}' hint='{n,m} Match previous item at least n times but no more than m times.' flags='2'/>
  443. <tag menu='R' submenu='RegExp->Repetition Characters' inserttext='{|,}' hint='{n,} Match previous item at least n times.' flags='2'/>
  444. <tag menu='R' submenu='RegExp->Repetition Characters' inserttext='{|}' hint='{n} Match previous item exactly n times.' flags='2'/>
  445. <tag menu='R' submenu='RegExp->Repetition Characters' inserttext='?' hint='Match previous item zero or one times. Equivalent to {0,1}.' flags='2'/>
  446. <tag menu='R' submenu='RegExp->Repetition Characters' inserttext='+' hint='Match previous item one or more times. Equivalent to {1,}.' flags='2'/>
  447. <tag menu='R' submenu='RegExp->Repetition Characters' inserttext='*' hint='Match previous item zero or more times. Equivalent to {0,}.' flags='2'/>
  448.  
  449. <tag menu='R' submenu='RegExp' flags='4'/>
  450. <tag menu='R' submenu='RegExp' inserttext='new RegExp(|)' hint='RegExp(pattern, attributes) Creates a new RegExp object.' flags='2'/>
  451. <tag menu='R' submenu='RegExp' flags='4'/>
  452. <tag menu='R' submenu='RegExp' inserttext='.exec(|)' hint='Searches string argument and returns array of results or null.' flags='2'/>
  453. <tag menu='R' submenu='RegExp' inserttext='.global' hint='Specifies whether the object performs global matching (created with g att). Read-only boolean property.' flags='2'/>
  454. <tag menu='R' submenu='RegExp' inserttext='.ignoreCase' hint='Specifies whether the object performs case-insensitive matching (created with i att). Read-only boolean property.' flags='2'/>
  455. <tag menu='R' submenu='RegExp' inserttext='.lastIndex' hint='The starting position of the next match. Read/write property.' flags='2'/>
  456. <tag menu='R' submenu='RegExp' inserttext='.multiline' hint='Specifies whether the object performs multiline mode matching (created with m att). Read-only boolean property.' flags='2'/>
  457. <tag menu='R' submenu='RegExp' inserttext='.source' hint='The text of the RegExp pattern. Read-only string property. Does not include delimiting slashes.' flags='2'/>
  458. <tag menu='R' submenu='RegExp' inserttext='.test(|)' hint='Returns true if the string argument matches the regex, else returns false.' flags='2'/>
  459. <tag menu='R' submenu='RegExp' inserttext='.toString()' hint='Returns a string rep. of the regular expression in the form of a literal.' flags='2'/>
  460.  
  461. <tag menu='R' submenu='Reset' hint='Reset inherits from Input and HTMLElement.' flags='0'/>
  462. <tag menu='R' submenu='Reset' inserttext='.onclick' hint='Event handler invoked when the reset button is clicked.' flags='2'/>
  463. <tag menu='R' submenu='Reset' inserttext='.value' hint='The text that appears in the reset button. Read/write string.' flags='2'/>
  464.  
  465. <tag menu='R' flags='4'/>
  466. <tag menu='R' inserttext='return;' hint='return statement.' flags='2'/>
  467. <tag menu='R' inserttext='return |;' hint='return statement.' flags='2'/>
  468.  
  469. <tag menu='S' submenu='Screen' inserttext='.availHeight' hint='The available height, in pixels, of the screen.' flags='2'/>
  470. <tag menu='S' submenu='Screen' inserttext='.availWidth' hint='The available width, in pixels, of the screen.' flags='2'/>
  471. <tag menu='S' submenu='Screen' inserttext='.colorDepth' hint='The number of colors available (base-2 logarithm). Example: 8 for 256 colors.' flags='2'/>
  472. <tag menu='S' submenu='Screen' inserttext='.height' hint='The total height, in pixels, of the screen.' flags='2'/>
  473. <tag menu='S' submenu='Screen' inserttext='.width' hint='The total width, in pixels, of the screen.' flags='2'/>
  474.  
  475. <tag menu='S' submenu='Select' hint='Select inherits from Input and HTMLElement.' flags='0'/>
  476. <tag menu='S' submenu='Select' inserttext='.length' hint='The number of elements in the options[] array. Read-only integer.' flags='2'/>
  477. <tag menu='S' submenu='Select' inserttext='.options[|]' hint='Array of Option objects.' flags='2'/>
  478. <tag menu='S' submenu='Select' inserttext='.selectedIndex' hint='The index of the selected option. Read/write integer.' flags='2'/>
  479. <tag menu='S' submenu='Select' inserttext='.type' hint='The type of the element. "select-one" or "select-multiple". Read-only string.' flags='2'/>
  480. <tag menu='S' submenu='Select' inserttext='.onchange' hint='Event handler invoked when option is selected or deselected.' flags='2'/>
  481.  
  482. <tag menu='S' submenu='String' inserttext='new String(|)' hint='Creates a new String object. The argument is the string to be stored.' flags='2'/>
  483. <tag menu='S' submenu='String' flags='4'/>
  484. <tag menu='S' submenu='String' inserttext='.charAt(|)' hint='Returns the nth character (n is the argument) of the string.' flags='2'/>
  485. <tag menu='S' submenu='String' inserttext='.charCodeAt(|)' hint='Returns the Unicode encoding of the nth character (n is the argument) of the string. Returns an integer between 0 and 65535.' flags='2'/>
  486. <tag menu='S' submenu='String' inserttext='.concat(|)' hint='Returns a new string that results from concatenating each of the arguments to the string.' flags='2'/>
  487. <tag menu='S' submenu='String' inserttext='.fromCharCode(|)' hint='Returns a new string made from the specified Unicode character encodings given in each argument.' flags='2'/>
  488. <tag menu='S' submenu='String' inserttext='.indexOf(|)' hint='Returns the first location of a substring in the string. Optional start parameter specifies where to start searching.' flags='2'/>
  489. <tag menu='S' submenu='String' inserttext='.lastIndexOf(|)' hint='Returns the last location of a substring in the string. Optional start parameter specifies where to start searching.' flags='2'/>
  490. <tag menu='S' submenu='String' inserttext='.length' hint='The length of the string. Read-only integer property.' flags='2'/>
  491. <tag menu='S' submenu='String' inserttext='.localeCompare(|)' hint='Compares the string to a target string using locale-specific ordering. Returns a number.' flags='2'/>
  492. <tag menu='S' submenu='String' inserttext='.match(|)' hint='Search string for regex matches and return an array containing the results.' flags='2'/>
  493. <tag menu='S' submenu='String' inserttext='.replace(|)' hint='Replace substrings in string. Returns a new string.' flags='2'/>
  494. <tag menu='S' submenu='String' inserttext='.search(|)' hint='Searches string for a regular expression. Returns the start of the first substring that matches or -1.' flags='2'/>
  495. <tag menu='S' submenu='String' inserttext='.slice(|)' hint='Returns a substring based on start position and end position arguments.' flags='2'/>
  496. <tag menu='S' submenu='String' inserttext='.split(|)' hint='Break a string into an array of strings based on delimiter and limit arguments. Delimiter can be string or reg ex.' flags='2'/>
  497. <tag menu='S' submenu='String' inserttext='.substr(|)' hint='Deprecated. Recommend substring() or slice() instead. Returns a substring based on start position and length arguments. Length argument is optional.' flags='2'/>
  498. <tag menu='S' submenu='String' inserttext='.substring(|)' hint='Returns a substring based on from position and to position arguments. To argument is optional. Length of returned string is to-from.' flags='2'/>
  499. <tag menu='S' submenu='String' inserttext='.toLocaleLowerCase()' hint='Returns a string converted to lowercase letters in a locale-specific way.' flags='2'/>
  500. <tag menu='S' submenu='String' inserttext='.toLocaleUpperCase()' hint='Returns a string converted to uppercase letters in a locale-specific way.' flags='2'/>
  501. <tag menu='S' submenu='String' inserttext='.toLowerCase()' hint='Returns a string with each uppercase letter converted to lowercase.' flags='2'/>
  502. <tag menu='S' submenu='String' inserttext='.toString()' hint='Returns the primitive string value of the string (rarely necessary to explicitly call this method).' flags='2'/>
  503. <tag menu='S' submenu='String' inserttext='.toUpperCase()' hint='Returns a string with each lowercase letter converted to uppercase.' flags='2'/>
  504. <tag menu='S' submenu='String' inserttext='.valueOf()' hint='Returns the primitive string value of the string.' flags='2'/>
  505.  
  506. <tag menu='S' submenu='Submit' hint='Submit inherits from Input and HTMLElement.' flags='0'/>
  507. <tag menu='S' submenu='Submit' inserttext='.onclick' hint='Event handler invoked when the submit button is clicked.' flags='2'/>
  508. <tag menu='S' submenu='Submit' inserttext='.value' hint='The text that appears in the submit button. Read/write string.' flags='2'/>
  509.  
  510. <tag menu='S' submenu='SyntaxError' inserttext='new SyntaxError(|)' hint='Creates a new SyntaxError object. Thrown to signal a syntax error. Optional message argument.' flags='2'/>
  511. <tag menu='S' submenu='SyntaxError' flags='4'/>
  512. <tag menu='S' submenu='SyntaxError' inserttext='.message' hint='Human-readable error message.' flags='2'/>
  513. <tag menu='S' submenu='SyntaxError' inserttext='.name' hint='The type of error or exception that occurred.' flags='2'/>
  514.  
  515. <tag menu='S' flags='4'/>
  516. <tag menu='S' submenu='switch' inserttext='switch (|) { }' hint='switch statement.' flags='2'/>
  517. <tag menu='S' submenu='switch' inserttext='switch (|) { case: }' caption='switch (|) { case: }' hint='switch statement with case.' flags='2'/>
  518. <tag menu='S' submenu='switch' inserttext='switch (|) { case: default: }' caption='switch (|) { case: default: }' hint='switch statement with case and default.' flags='2'/>
  519. <tag menu='S' flags='4'/>
  520.  
  521. <tag menu='T' submenu='Text' hint='Text inherits from Input and HTMLElement.' flags='0'/>
  522. <tag menu='T' submenu='Text' inserttext='.value' hint='The text displayed in the input text field. Read/write string.' flags='2'/>
  523. <tag menu='T' submenu='Text' inserttext='.onchange' hint='Event handler invoked when text is changed and keyboard focus is moved. Not invoked with every keystroke.' flags='2'/>
  524.  
  525. <tag menu='T' submenu='Textarea' hint='Textarea inherits from Input and HTMLElement.' flags='0'/>
  526. <tag menu='T' submenu='Textarea' inserttext='.value' hint='The text displayed in the text input field. Read/write string.' flags='2'/>
  527. <tag menu='T' submenu='Textarea' inserttext='.onchange' hint='Event handler invoked when text is changed and keyboard focus is moved. Not invoked with every keystroke.' flags='2'/>
  528.  
  529. <tag menu='T' submenu='TypeError' inserttext='new TypeError(|)' hint='Creates a new TypeError object. Thrown when a value is not of the type expected. Optional message argument.' flags='2'/>
  530. <tag menu='T' submenu='TypeError' flags='4'/>
  531. <tag menu='T' submenu='TypeError' inserttext='.message' hint='Human-readable error message.' flags='2'/>
  532. <tag menu='T' submenu='TypeError' inserttext='.name' hint='The type of error or exception that occurred.' flags='2'/>
  533.  
  534. <tag menu='T' flags='4'/>
  535. <tag menu='T' submenu='try/catch/finally' inserttext='try { | } catch () { }' caption='try () catch () {}' hint='try block with catch.' flags='2'/>
  536. <tag menu='T' submenu='try/catch/finally' inserttext='try { | } finally { }' caption='try () finally {}' hint='try block with finally.' flags='2'/>
  537. <tag menu='T' submenu='try/catch/finally' inserttext='try { | } catch () { } finally { }' caption='try () catch () {} finally {}' hint='try block with catch and finally.' flags='2'/>
  538.  
  539. <tag menu='T' flags='4'/>
  540. <tag menu='T' inserttext='throw |;' hint='Throws an exception.' flags='2'/>
  541. <tag menu='T' inserttext='typeof(|)' hint='Return a string indicating the data type of the operand. typeof is a unary operator.' flags='2'/>
  542.  
  543. <tag menu='U' submenu='URIError' inserttext='new URIError(|)' hint='Creates a new URIError object. Thrown by decode[URI]Component() if string contains illegal hexadecimal escapes. Optional message argument.' flags='2'/>
  544. <tag menu='U' submenu='URIError' flags='4'/>
  545. <tag menu='U' submenu='URIError' inserttext='.message' hint='Human-readable error message.' flags='2'/>
  546. <tag menu='U' submenu='URIError' inserttext='.name' hint='The type of error or exception that occurred.' flags='2'/>
  547.  
  548. <tag menu='U' flags='4'/>
  549. <tag menu='U' inserttext='undefined' hint='Spcial value that holds the undefined value. Not the same as null.' flags='2'/>
  550. <tag menu='U' inserttext='unescape(|)' hint='Deprecated. Recommend decodeURI() or decodeURIComponent() instead. Decodes a string that was encoded with escape().' flags='2'/>
  551.  
  552. <tag menu='V' inserttext='var |;' hint='Explicitly declare a variable or variables.' flags='2'/>
  553. <tag menu='V' inserttext='void' hint='Returns undefined and discards its operand value. void is a unary operator.' flags='2'/>
  554.  
  555. <tag menu='W' submenu='Window->Window Features' hint="For the features argument of Window.open(url, name, features, replace)." flags='0'/>
  556. <tag menu='W' submenu='Window->Window Features' inserttext='height=' hint="The height, in pixels, of the window's document display area." flags='2'/>
  557. <tag menu='W' submenu='Window->Window Features' inserttext='location' hint="Specifies whether the browser's URL input field is displayed." flags='2'/>
  558. <tag menu='W' submenu='Window->Window Features' inserttext='menubar' hint="Specify whether the browser's menubar is displayed." flags='2'/>
  559. <tag menu='W' submenu='Window->Window Features' inserttext='resizable' hint="Specifies whether the browser uses resize handles around its border." flags='2'/>
  560. <tag menu='W' submenu='Window->Window Features' inserttext='scrollbars' hint="Enables horizontal and vertical scrollbars when needed." flags='2'/>
  561. <tag menu='W' submenu='Window->Window Features' inserttext='status' hint="Specifies whether the status line is displayed." flags='2'/>
  562. <tag menu='W' submenu='Window->Window Features' inserttext='toolbar' hint="Specifies whether the browser toolbar is displayed." flags='2'/>
  563. <tag menu='W' submenu='Window->Window Features' inserttext='width=' hint="The width, in pixels, of the window's document display area." flags='2'/>
  564. <tag menu='W' submenu='Window' flags='4'/>
  565. <tag menu='W' submenu='Window' inserttext='alert(|)' hint='Displays a plain text (not HTML) message in a dialog box.' flags='2'/>
  566. <tag menu='W' submenu='Window' inserttext='blur()' hint='Remove keyboard focus from the top-level browser window.' flags='2'/>
  567. <tag menu='W' submenu='Window' inserttext='clearInterval(|)' hint='Set periodically executing code. Argument is a value returned by setInterval().' flags='2'/>
  568. <tag menu='W' submenu='Window' inserttext='clearTimeout(|)' hint='Cancel a timeout. Argument is a value returned by setTimeout().' flags='2'/>
  569. <tag menu='W' submenu='Window' inserttext='close()' hint='Closes the top-level browser window.' flags='2'/>
  570. <tag menu='W' submenu='Window' inserttext='closed' hint='Specifies whether the window has been closed. Read-only boolean property.' flags='2'/>
  571. <tag menu='W' submenu='Window' inserttext='confirm(|)' hint='Asks a yes-or-no question in a dialog box. The argument is the plain text string to display.' flags='2'/>
  572. <tag menu='W' submenu='Window' inserttext='defaultStatus' hint="The default text to appear in the window's status line. Read/write string." flags='2'/>
  573. <tag menu='W' submenu='Window' inserttext='document' hint='Reference to the Document object for the window or frame. Read-only.' flags='2'/>
  574. <tag menu='W' submenu='Window' inserttext='focus()' hint='Gives keyboard focus to the top-level browser window.' flags='2'/>
  575. <tag menu='W' submenu='Window' inserttext='frames[|]' hint='Array of Frame objects from frames that appear in the window.' flags='2'/>
  576. <tag menu='W' submenu='Window' inserttext='history' hint='Reference to the History object that controls the browser URL history. Read-only.' flags='2'/>
  577. <tag menu='W' submenu='Window' inserttext='length' hint='The number of frames in the window or frame. Equivalent to frames.length.' flags='2'/>
  578. <tag menu='W' submenu='Window' inserttext='location' hint='Reference to the Location object that controls the browser location.' flags='2'/>
  579. <tag menu='W' submenu='Window' inserttext='Math' hint='Reference to object containing math functions and constants. See the Math object.' flags='2'/>
  580. <tag menu='W' submenu='Window' inserttext='moveBy(|)' hint='moveBy(dx, dy) Move a window to a relative position.' flags='2'/>
  581. <tag menu='W' submenu='Window' inserttext='moveTo(|)' hint='moveTo(x, y) Move a window to an absolute position.' flags='2'/>
  582. <tag menu='W' submenu='Window' inserttext='name' hint='The name of a window. Read/write string.' flags='2'/>
  583. <tag menu='W' submenu='Window' inserttext='navigator' hint='Reference to the Navigator object. See the Navigator object. Read-only.' flags='2'/>
  584. <tag menu='W' submenu='Window' inserttext='onblur' hint='Event handler invoked when the window loses keyboard focus.' flags='2'/>
  585. <tag menu='W' submenu='Window' inserttext='onerror' hint='Event handler invoked when a JavaScript error occurs in code executing in the window.' flags='2'/>
  586. <tag menu='W' submenu='Window' inserttext='onfocus' hint='Event handler invoked when the window is given keyboard focus.' flags='2'/>
  587. <tag menu='W' submenu='Window' inserttext='onload' hint='Event handler invoked when a document or frameset is completely loaded into the window or frame.' flags='2'/>
  588. <tag menu='W' submenu='Window' inserttext='onresize' hint='Event handler invoked when the window is resized.' flags='2'/>
  589. <tag menu='W' submenu='Window' inserttext='onunload' hint='Event handler invoked when the browser unloads/leaves a document.' flags='2'/>
  590. <tag menu='W' submenu='Window' inserttext='open(|)' hint='open(url, name, features, replace) Open a new window or locate a named window. Returns a reference to a Window object.' flags='2'/>
  591. <tag menu='W' submenu='Window' inserttext='opener' hint='Reference to Window object with script that called open() to open the window. For top-level windows only. Read/write.' flags='2'/>
  592. <tag menu='W' submenu='Window' inserttext='parent' hint='Reference to Window object that contains the window or frame. Read-only.' flags='2'/>
  593. <tag menu='W' submenu='Window' inserttext='print()' hint='Prints the current document as if the user pressed the print button.' flags='2'/>
  594. <tag menu='W' submenu='Window' inserttext='prompt(|)' hint='prompt(message, default) Opens a dialog box asking for text input from the user.' flags='2'/>
  595. <tag menu='W' submenu='Window' inserttext='resizeBy(|)' hint='resizeBy(dw, dh) Resizes the window by a relative amount. Arguments in pixels.' flags='2'/>
  596. <tag menu='W' submenu='Window' inserttext='resizeTo(|)' hint='resizeTo(width, height) Resizes the window to an absolute amount. Arguments in pixels.' flags='2'/>
  597. <tag menu='W' submenu='Window' inserttext='screen' hint='Reference to the Screen object shared by all windows in the browser. See the Screen object.' flags='2'/>
  598. <tag menu='W' submenu='Window' inserttext='scrollBy(|)' hint='scrollBy(dx, dy) Scroll a document by a relative amount. dx-scroll right, dy-scroll down.' flags='2'/>
  599. <tag menu='W' submenu='Window' inserttext='scrollTo(|)' hint='scrollTo(x, y) Scroll a document so that the x- and y-coords are in the upper-left of the window.' flags='2'/>
  600. <tag menu='W' submenu='Window' inserttext='self' hint='Reference to the Window itself. Identical to window property. Read-only.' flags='2'/>
  601. <tag menu='W' submenu='Window' inserttext='setInterval(|)' hint='Periodically execute specified code every given number of milliseconds.' flags='2'/>
  602. <tag menu='W' submenu='Window' inserttext='setTimeout(|)' hint='setTimeout(code, delay) Execute code after a delay given in milliseconds.' flags='2'/>
  603. <tag menu='W' submenu='Window' inserttext='status' hint="Read/write string property that specifies transient text to appear in the window's status line." flags='2'/>
  604. <tag menu='W' submenu='Window' inserttext='top' hint='Reference to the top-level Window that contains this window. Read-only.' flags='2'/>
  605. <tag menu='W' submenu='Window' inserttext='window' hint='Reference to the Window itself. Identical to self property. Read-only.' flags='2'/>
  606.  
  607. <tag menu='W' flags='4'/>
  608. <tag menu='W' inserttext='with (|) { }' hint='Not recommended due to possible side effects and poor style.' flags='2'/>
  609.  
  610. </csetaginserterconfiguration>
  611.